home *** CD-ROM | disk | FTP | other *** search
- #pragma once
-
- //====
- // AngleCaption.h
- //
- // Allows you to display the flow
- // in a caption!
- //=====
-
-
- #include <LPane.h>
- #include <LPeriodical.h>
- #include <LOffscreenView.h>
- #include "InputSprocket.h"
- #include "InputSprocketDriver.h"
-
- class ISpElementView : public LOffscreenView, LPeriodical
- {
- public:
- enum {class_ID = 'ISpv'};
-
- ISpElementView(LStream *inStream);
- ~ISpElementView();
-
- static ISpElementView *CreateISpElementViewStream(LStream *inStream);
- void SpendTime(const EventRecord &inMacEvent);
- void DrawSelf();
-
-
- private:
-
- };
-